|
Exception safety guarantees, originally formalized by David Abrahams,〔(【引用サイトリンク】title=Exception-Safety in Generic Components )〕 are a set of contractual guidelines that class library implementers and clients can use when reasoning about exception handling safety in any programming language that uses exceptions, particularly C++. There are several levels of exception safety (in decreasing order of safety):〔(【引用サイトリンク】author=Bjarne Stroustrup )〕 # No-throw guarantee, also known as failure transparency: Operations are guaranteed to succeed and satisfy all requirements even in exceptional situations. If an exception occurs, it will be handled internally and not observed by clients. # Strong exception safety, also known as commit or rollback semantics: Operations can fail, but failed operations are guaranteed to have no side effects, so all data retain their original values.〔http://www.open-std.org/jtc1/sc22/wg21/docs/papers/1997/N1077.asc〕 # Basic exception safety, also known as a no-leak guarantee: Partial execution of failed operations can cause side effects, but all invariants are preserved and no resources are leaked. Any stored data will contain valid values, even if they differ from what they were before the exception. # No exception safety: No guarantees are made. Usually, at least basic exception safety is required to write robust code. Higher levels of safety can sometimes be difficult to achieve, and might incur an overhead due to extra copying. == Example == Consider a smart vector type, such as C++'s or Java's . When an item is added to a vector , the vector must actually add to the internal list of objects and update a count field that says how many objects are in . It may also need to allocate new memory if the existing capacity isn't sufficient. Exception safety alternatives: ;No-throw guarantee: Very difficult or impossible to implement, since memory allocation may fail and throw an exception. Handling allocation failure would then be problematic, since repeated attempts are also likely to fail. ;Strong exception safety: Can be implemented fairly easily by doing any allocation first and then copying into a temporary buffer that is eventually swapped if no errors are encountered. In this case, insertion of into will either succeed, or will remain unchanged. ;Basic exception safety: Implemented by ensuring that the size field is guaranteed to be updated if is successfully inserted. Also, all allocations need to be handled in a way that prevents any chance of a resource leak, regardless of failure. ;No exception safety: Implementation in which an insertion failure might lead to corrupted content in , an incorrect size value, or a resource leak. 抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)』 ■ウィキペディアで「Exception safety」の詳細全文を読む スポンサード リンク
|